home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / lbenumer.jav < prev    next >
Text File  |  1995-10-14  |  1KB  |  57 lines

  1. /*
  2.   File: LBEnumeration.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   24Sep95  dl@cs.oswego.edu   Create from collections.java  working file
  11.   13Oct95  dl                 Changed protection statuses
  12.  
  13. */
  14.   
  15. package collections;
  16.  
  17. import java.util.Enumeration;
  18. import java.util.NoSuchElementException;
  19.  
  20. /**
  21.  *
  22.  *
  23.  * Enumerator for collections based on linked buffers
  24.  * @author Doug Lea
  25.  * @version 0.93
  26.  *
  27.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  28. **/
  29. final class LBEnumeration extends CEImpl {
  30.   private CLCell list_;
  31.   private int idx_;
  32.  
  33.   public LBEnumeration(UpdatableCollection c, CLCell l) { 
  34.     super(c);
  35.     list_ = l;
  36.     idx_ = 0;
  37.   }
  38.  
  39. /**
  40.  * Implements java.util.Enumeration.nextElement.
  41.  * @see java.util.Enumeration#nextElement
  42. **/
  43.   public Object nextElement() { 
  44.     decRemaining();
  45.     Object buff[] = (Object[])(list_.element());
  46.     Object v = buff[idx_];
  47.     ++idx_;
  48.     if (idx_ >= buff.length) {
  49.       list_ = list_.next();
  50.       idx_ = 0; 
  51.     }
  52.     return v;
  53.   }
  54.             
  55. }
  56.  
  57.